home *** CD-ROM | disk | FTP | other *** search
/ Imagine the Universe (9th Edition) / Imagine the Universe 9 - Disc 1.iso / pc / imagine / YBA / HTCas-size / javascript / ang_size_star.js < prev    next >
Text File  |  2003-01-12  |  353b  |  19 lines

  1. size = "Blank";
  2.  
  3. function checkme() {
  4. size = document.ang_size_star.answer.value - 0;
  5. if (!size) {size = "Blank";}
  6.  
  7. RightOnFile = './ang_size_star-correct.html';
  8. WayWrongFile = './ang_size_star-wrong.html';
  9.  
  10. var good  = new RegExp("\D*");
  11.  
  12. if ((size == "Blank") || (size == good)) {
  13.     location = RightOnFile;
  14. }
  15. else {
  16.     location = WayWrongFile;
  17. }
  18. }
  19.